From e6fd4fa755bc32ca5eacbad3e6e5630fd57f34c8 Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Fri, 19 Jul 2002 14:27:16 +0000 Subject: [PATCH] (temp_output_buffer_setup): (internal_with_output_to_temp_buffer): Buffer name argument is now pointer to const. --- src/print.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/print.c b/src/print.c index dbbeec97b4e..01f42ab0460 100644 --- a/src/print.c +++ b/src/print.c @@ -578,7 +578,7 @@ write_string_1 (data, size, printcharfun) void temp_output_buffer_setup (bufname) - char *bufname; + const char *bufname; { int count = SPECPDL_INDEX (); register struct buffer *old = current_buffer; @@ -609,7 +609,7 @@ temp_output_buffer_setup (bufname) Lisp_Object internal_with_output_to_temp_buffer (bufname, function, args) - char *bufname; + const char *bufname; Lisp_Object (*function) P_ ((Lisp_Object)); Lisp_Object args; { -- 2.30.2